home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 24
/
Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso
/
Aminet
/
dev
/
lang
/
PPCsmalltalk.lha
/
PPCSmallTalk
/
examples
/
cond.st
< prev
next >
Wrap
Text File
|
1986-10-19
|
189b
|
11 lines
Class Main
[
main | i |
((2 < 3) ifTrue: ['correct']) print.
(2 < 3) ifTrue: ['correct' print ].
i <- 1.
[i < 3] whileTrue: [i <- i + 1].
(i >= 3) ifTrue: ['correct' print]
]